home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / include / exec_intern.h < prev   
Encoding:
C/C++ Source or Header  |  1996-07-16  |  649 b   |  32 lines

  1. #ifndef __EXEC_INTERN_H__
  2. #define __EXEC_INTERN_H__
  3.  
  4. /* This is a short file that contains a few things every Exec function
  5.     needs */
  6.  
  7. #ifndef AROS_OPTIONS_H
  8. #   include <aros/options.h>
  9. #endif
  10. #ifndef AROS_SYSTEM_H
  11. #   include <aros/system.h>
  12. #endif
  13. #ifndef AROS_LIBCALL_H
  14. #   include <aros/libcall.h>
  15. #endif
  16. #ifndef EXEC_EXECBASE_H
  17. #   include <exec/execbase.h>
  18. #endif
  19. #ifndef CLIB_EXEC_PROTOS_H
  20. #   include <clib/exec_protos.h>
  21. #endif
  22.  
  23. #if UseLVOs
  24. extern void __AROS_InitExecBase (void);
  25. #endif
  26.  
  27. #define __AROS_LIBRARY_TYPE    struct ExecBase *
  28. #define __AROS_LIBRARY_BASE    SysBase
  29. #define __AROS_LIBRARY_NAME    Exec
  30.  
  31. #endif /* __EXEC_INTERN_H__ */
  32.